home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1997
/
HAM Radio 1997.iso
/
vcls
/
srctt26
/
timetrac.dpr
< prev
next >
Wrap
Text File
|
1996-04-08
|
471b
|
23 lines
program TimeTrac;
uses
Forms,
Timeunit in 'TIMEUNIT.PAS' {MainForm},
About in 'ABOUT.PAS' {AboutBox},
Presetun in 'PRESETUN.PAS' {BtnRightDlg},
Freehrs in 'FREEHRS.PAS' {BtnBottomDlg},
Previnst in 'PREVINST.PAS';
{$R *.RES}
begin
if HPrevInst <> 0 then
begin
ActivatePreviousInstance;
Exit;
end;
Application.Title := 'OnLineTime Tracker';
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.